home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 248_01 / dsfx2.h < prev    next >
Text File  |  1989-08-16  |  512b  |  16 lines

  1. /*
  2. **    name:        dsfx2.h
  3. **    purpose:    Temporary Suffix List for replacer
  4. **    status:        Copyright (c) 1988 - 1988
  5. **    author:        Roberto Artigas - All rights reserved
  6. **    NOTES:        Beware the exponation of the search space
  7. **            the more you add to this suffix table.
  8. */
  9. char    *sfx2[] = {        /* legal common word suffixes */
  10.     "est",
  11.     "ing",
  12.     "s"
  13. };
  14.  
  15. #define    NSUFFIX2 sizeof(sfx2) / sizeof(char *)
  16.